home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1998 January / PC Answers Issue 49 Cover CD January 1998.iso / Apps / Director / DATA.Z / Ink Effects.dir / Scripts_22_Try All Inks Handlers.ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  376 b   |  13 lines

  1. on ToggleOriginalInk
  2.   global gCurrentInk, gInkEffectsButtonPropertyList
  3.   set the member of sprite the clickOn to getaProp(gInkEffectsButtonPropertyList, the clickOn) + 1
  4.   updateStage()
  5.   repeat while the stillDown = 1
  6.     set the blend of sprite 8 to 100
  7.     set the ink of sprite 8 to 0
  8.     set the ink of sprite 7 to 0
  9.     updateStage()
  10.   end repeat
  11.   SetObjectInk()
  12. end
  13.